
/* Ajout d'une transition au survol des éléments */
#menuList li a,
#loginDropdown a {
    transition: color 0.3s, transform 0.3s;
}

/* Animation au survol */
#menuList li a:hover,
#loginDropdown a:hover {
    color: #FF5722;
    /* Changez cette couleur à celle de votre choix */
    transform: scale(1.1);
    /* Vous pouvez ajuster la valeur selon la taille souhaitée */
}
/*style de la navigation fixe*/
  .fixed-navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      /* Set a higher z-index value */
      background: white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }


  .badge {
      background-color: #007bff;
      color: #fff;
      padding: 0.2em 0.5em;
      border-radius: 50%;
      font-size: 0.8em;
      margin-left: 5px;
  }
  
  